From: Stuart Prescott Date: Sat, 28 Mar 2026 06:10:38 +0000 (+1100) Subject: Use correct Python module paths in cmake files X-Git-Tag: archive/raspbian/6.10.3-2+rpi1^2^2~1 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/%22stanciumarius94%40gmail.com//%22mailto:i18n-csb%40linuxcsb.org/%22/%22http:/www.example.com/%22stanciumarius94%40gmail.com/%22mailto:i18n-csb%40linuxcsb.org/%22?a=commitdiff_plain;h=a2e37cef5207ff2bef50edd8919b61992164a6cd;p=pyside6.git Use correct Python module paths in cmake files Gbp-Pq: Name 0011-Use-correct-Python-module-paths-in-cmake-files.patch --- diff --git a/sources/shiboken6/data/Shiboken6ToolsConfig.cmake.in b/sources/shiboken6/data/Shiboken6ToolsConfig.cmake.in index fdc8e6dc..afb89039 100644 --- a/sources/shiboken6/data/Shiboken6ToolsConfig.cmake.in +++ b/sources/shiboken6/data/Shiboken6ToolsConfig.cmake.in @@ -7,16 +7,9 @@ if(NOT CMAKE_CROSSCOMPILING) find_dependency(Python COMPONENTS Interpreter Development.Module) if(NOT SHIBOKEN6TOOLS_SKIP_FIND_DEPENDENCIES) - # Dynamically determine Python_SITELIB using Python itself - execute_process( - COMMAND ${Python_EXECUTABLE} -c - "import site; print(next(p for p in site.getsitepackages() if 'site-packages' in p))" - OUTPUT_VARIABLE Python_SITELIB - OUTPUT_STRIP_TRAILING_WHITESPACE - ) list(APPEND CMAKE_PREFIX_PATH - "${Python_SITELIB}/shiboken6/lib/cmake" - "${Python_SITELIB}/PySide6/lib/cmake" + "/usr/lib/python3/dist-packages/shiboken6/lib/cmake" + "/usr/lib/python3/dist-packages/PySide6/lib/cmake" ) find_dependency(Shiboken6 REQUIRED) find_dependency(PySide6 REQUIRED)